home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 July / Macworld (1999-07).dmg / Serious Software / OpenWorld demo 2.0 / Development / Utils / OpenWorld_utils.h < prev   
Text File  |  1999-04-27  |  412b  |  22 lines

  1. /*
  2. OpenWorld_utils.h
  3.  
  4. Useful routines for OpenWorld (header file)
  5.  
  6. Version 1.0
  7. Copyright ©1998-99, Marco Bambini, Inc. All rights reserved.
  8. */
  9.  
  10. #ifndef __OPENWORLD_UTILS__
  11. #define __OPENWORLD_UTILS__
  12.  
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include <ctype.h>
  16. #include <string.h>
  17. #include "WSAPI.h"
  18.  
  19. char *up_strstr(const char * str, const char * pat);
  20. int up_strcmp(const char * str1, const char * str2);
  21.  
  22. #endif